home *** CD-ROM | disk | FTP | other *** search
/ Virtual Reality StarterKit / Virtual Reality StarterKit.iso / dim20001 / swtdemo.bat < prev    next >
Encoding:
DOS Batch File  |  1993-10-11  |  1.0 KB  |  55 lines

  1. @echo off
  2. cls
  3. echo.
  4. echo           Welcome to Superscape Virtual World
  5. echo.
  6. echo.
  7. echo  In order to fully understand Superscape Virtual Realities, carefully
  8. echo  read the README file (option 2).
  9. echo.
  10. echo  It is strongly advised that you print out the README file. 
  11. echo  If you wish to do so use option 3.
  12. echo.
  13. :start
  14. echo.
  15. echo  Choose one of the selections below:
  16. echo.
  17. echo     1. RUN Virtual Reality Information. 
  18. echo     2. READ the README file.
  19. echo           (Use this option before running the software.)
  20. echo     3. Print out the README file.
  21. echo     4. QUIT.
  22. echo.
  23. echo     Please enter the number for your choice;   Enter 1-4 only.
  24. query
  25.  
  26. if errorlevel = 5 goto invalid
  27. if errorlevel = 4 goto end
  28. if errorlevel = 3 goto print
  29. if errorlevel = 2 goto read
  30. if errorlevel = 1 goto run
  31.  
  32. :invalid
  33. cls
  34. echo Invalid option
  35. goto start
  36. goto end
  37.  
  38. REM Run demo   
  39. :run
  40. demo.exe 
  41. goto end
  42.  
  43. REM read readme
  44. :read
  45. cls
  46. call read.bat 
  47. goto start
  48.  
  49. :print
  50. print %1:\dim20001\readme    
  51. cls
  52. goto start
  53.  
  54. :end
  55.